home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
342_01
/
diomake.bat
< prev
next >
Wrap
DOS Batch File
|
1991-02-20
|
512b
|
25 lines
REM Batch file to build all the DIOLIB libraries.
DEL CMPERR.TXT
DEL DIOLIB?.LIB
DEL DIOLIB?.BAK
DEL DIOLIB?.LST
ECHO Building LARGE memory model. >>CMPERR.TXT
DEL DIOFNC??.OBJ
MAKE DIOLIBL.BLD
LIB DIOLIBL.LIB, DIOLIBL.LST;
ECHO Building MEDIUM memory model. >>CMPERR.TXT
DEL DIOFNC??.OBJ
MAKE DIOLIBM.BLD
LIB DIOLIBM.LIB, DIOLIBM.LST;
ECHO Building SMALL memory model. >>CMPERR.TXT
DEL DIOFNC??.OBJ
MAKE DIOLIBS.BLD
LIB DIOLIBS.LIB, DIOLIBS.LST;
DEL DIOFNC??.OBJ
DEL DIOLIB?.BAK